home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Developer Toolbox 6.1
/
SGI Developer Toolbox 6.1 - Disc 4.iso
/
src
/
demos
/
GL
/
atlantis
/
Makefile
< prev
next >
Wrap
Makefile
|
1994-08-01
|
450b
|
23 lines
#!smake
#
include ${ROOT}/usr/include/make/commondefs
# Libraries to link with to get the GL (-lsun is necessary for correct
# remote graphics operation when running NIS).
TARGETS = atlantis
LLDLIBS = -lgl -lm -limage
CFILES = atlantis.c dolphin.c swim.c contour.c itoa.c shark.c whale.c
HFILES = objects.h
default all: ${TARGETS}
install:
$(MAKE) $(TARGETS)
include ${COMMONRULES}
${TARGETS}: ${OBJECTS}
${CCF} -o $@ ${OBJECTS} ${LDFLAGS}